home *** CD-ROM | disk | FTP | other *** search
/ BCI NET / BCI NET Dec 94.iso / archives / programming / source / thesource6.dms / thesource6.adf / Source / Compression / hcompress.lha / hcompress / vms / make.com < prev    next >
Encoding:
Text File  |  1992-04-24  |  1.3 KB  |  79 lines

  1. $! make.com    VMS command file to make hcomp.exe and hdecomp.exe
  2. $!
  3. $! R. White, 20 April 1992
  4. $!
  5. $! first make the library
  6. $!
  7. $ set ver
  8. $ cc bit_input
  9. $ cc bit_output
  10. $ cc decode
  11. $ cc digitize
  12. $ cc dodecode
  13. $ cc doencode
  14. $ cc encode
  15. $ cc fitspass
  16. $ cc fitsread
  17. $ cc get_data
  18. $ cc getopt
  19. $ cc hinv
  20. $ cc hsmooth
  21. $ cc htrans
  22. $ cc makefits
  23. $ cc put_data
  24. $ cc qread
  25. $ cc qtree_decode
  26. $ cc qtree_encode
  27. $ cc qwrite
  28. $ cc swap_bytes
  29. $ cc undigitize
  30. $ set nover
  31. $ delete libhcomp.olb;*
  32. $ lib/cre libhcomp  -
  33.     bit_input, -
  34.     bit_output, -
  35.     decode, -
  36.     digitize, -
  37.     dodecode, -
  38.     doencode, -
  39.     encode, -
  40.     fitspass, -
  41.     fitsread, -
  42.     get_data, -
  43.     getopt, -
  44.     hinv, -
  45.     hsmooth, -
  46.     htrans, -
  47.     makefits, -
  48.     put_data, -
  49.     qread, -
  50.     qtree_decode, -
  51.     qtree_encode, -
  52.     qwrite, -
  53.     swap_bytes, -
  54.     undigitize
  55. $ delete *.obj;*
  56. $ write sys$output "Library LIBHCOMP is up-to-date."
  57. $!
  58. $! now make executables
  59. $!
  60. $ cc hcomp
  61. $ define/user lnk$library sys$library:vaxcrtl
  62. $ link hcomp,libhcomp/lib
  63. $ delete hcomp.obj;*
  64. $ cc hdecomp
  65. $ define/user lnk$library sys$library:vaxcrtl
  66. $ link hdecomp,libhcomp/lib
  67. $ delete hdecomp.obj;*
  68. $!
  69. $! make MODIFY
  70. $!
  71. $ cc modify
  72. $ define/user lnk$library sys$library:vaxcrtl
  73. $ link modify
  74. $ delete modify.obj;*
  75. $ write sys$output "Executables HCOMP, HDECOMP, and MODIFY created."
  76. $ set protect=(o:rwed) *.*;-1
  77. $ purge
  78. $ exit
  79.